home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-08-28 | 1.3 KB | 41 lines | [TEXT/MPS ] |
- ;
- ; File: MenuMgr.a
- ;
- ; Contains: Public equates and macros for using menu manager public calls
- ;
- ; Written by: Kevin S. MacDonell
- ;
- ; Copyright: © 1991 by Apple Computer, Inc., all rights reserved.
-
-
-
-
- ;————————————————————————————————————————————————————————————————————————————————————————————————————
- IF &TYPE('__INCLUDINGMENUS__') = 'UNDEFINED' THEN
- __INCLUDINGMENUS__ SET 1
-
- IF &TYPE('__INCLUDINGTRAPS__') = 'UNDEFINED' THEN
- INCLUDE 'Traps.a'
- ENDIF
- ;————————————————————————————————————————————————————————————————————————————————————————————————————
- ; Define the Menu Manager Dispatch trap opword
- _MenuDispatch OPWORD $A825
-
- ;————————————————————————————————————————————————————————————————————————————————————————————————————
- ; Define the new selectors for the Menu Manager
- selectInsrtFontResMenu EQU 0
-
- ;————————————————————————————————————————————————————————————————————————————————————————————————————
- ; Define the parameter size passed for each call
- paramWordsInsrtFontResMenu EQU 4
-
- ;————————————————————————————————————————————————————————————————————————————————————————————————————
- ; Define the dispatch macros to get to the calls
-
- MACRO
- _InsrtFontResMenu
- DoDispatch _MenuDispatch,selectInsrtFontResMenu,paramWordsInsrtFontResMenu
- ENDM
-
- ENDIF ; Already included
-